{% extends 'base.html' %} {% load humanize %} {% block title %}Generate Report - TaskFlow{% endblock %} {% block content %}

Task Report

Print Report Performance Report
Total Tasks
{{ tasks|length }}
Recent Tasks
Generated on {{ now|date:"F j, Y" }}
{% for task in tasks %} {% empty %} {% endfor %}
Title Assigned To Status Priority Due Date Created
{{ task.title }} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.get_status_display }} {{ task.get_priority_display }} {{ task.due_date|date:"M d, Y" }} {{ task.created_at|timesince }} ago
No tasks found
{% endblock %} {% block extra_js %} {% endblock %}